![]() PDD file (206K) |
![]() ClarisWorks 4 file (36K) |
![]() QuickView file (284K) |
Technote 1014 | FEBRUARY 1996 |
Topics:
Important for all Apple Printing and Graphics Developers:
The information in this Technote is still relevant up to and including Mac OS 7.6 with QuickDraw GX 1.1.5. Beginning with the release of Mac OS 8.0, however, Apple plans to deliver a system which incorporates QuickDraw GX graphics and typography only. QuickDraw GX printer drivers and GX printing extensions will not be supported in Mac OS 8.0 or in future Mac OS releases. Apple's goal is to simplify the user experience of printing by unifying the Macintosh graphic and printing architectures and standardizing on the classic Printing Manager. For details on Apple's official announcement, refer to </technotes/gxchange.html> |
QuickDraw GX sends the GXDoesPaperFit message to limit the number of paper-type names that appear in the Paper pop-up menu in the Input Trays and Paper Mismatch dialogs. It does NOT limit the number of paper-type names for the Page Setup dialog box. You can override the GXDoesPaperFit message to notify QuickDraw GX that a certain paper type does not work in the specified paper tray on your device.
OSErr MyRasterLineFeed(short *lineFeedSize,Ptr buffer, unsigned long *bufferPos,gxRasterImageDataHdl imageData);Should be corrected to read:
OSErr MyRasterLineFeed(long *lineFeedSize, Ptr buffer, unsigned long *bufferPos, gxRasterImageDataHdl imageDataHdl)
OSErr MyWriteStatusToDTPWindow (gxStatusRecord aStatusRecord, gxDisplayRecord aDisplayRecord);should be corrected to read:
OSErr MyWriteStatusToDTPWindow (gxStatusRecord *aStatusRecord, gxDisplayRecord *aDisplayRecord);
Figure 6-33 shows the wrong value for the Render options field. It should be 4 bytes(long), not 2(short).